home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 July / EnigmA AMIGA RUN 20 (1997)(G.R. Edizioni)(IT)[!][issue 1997-07 & 08][EAR-CD IV].iso / earcd / mus / play / splibdev.lha / superplay-lib_DEV / Programmers / include / superplay / spobsolete.h next >
C/C++ Source or Header  |  1997-04-03  |  1KB  |  37 lines

  1. /*
  2. **      $VER: spobsolete.h 6.2 (17.3.97)
  3. **
  4. **      definitions not to be used in new software
  5. **
  6. **      (C) Copyright 1993-97 Andreas R. Kleinert
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef SUPERPLAY_SPOBSOLETE_H
  11. #define SUPERPLAY_SPOBSOLETE_H
  12.  
  13. #ifndef SUPERPLAY_SUPERPLAY_H
  14. #include <superplay/superplay.h>
  15. #endif /* SUPERPLAY_SUPERPLAY_H */
  16.  
  17.  
  18.  /*
  19.   GENERAL NOTE ON OBSOLETE ERROR CODE DEFINITIONS
  20.   -----------------------------------------------
  21.  
  22.   For reasons of clearness and completeness the following error code
  23.   define names have been replaced by more verbose ones.
  24.  
  25.   They're still valid but may be missing in future include versions.
  26.  */
  27.  
  28. #define SPERR_NO_DATA         SPERR_CANNOT_READ_CONTENT
  29. #define SPERR_NO_FILE         SPERR_CANNOT_OPEN_DEST_FILE
  30. #define SPERR_FILE_NOT_FOUND  SPERR_CANNOT_OPEN_SOURCE_FILE
  31. #define SPERR_NO_CLIPBOARD    SPERR_CANNOT_OPEN_SOURCE_CLIP
  32. #define SPERR_NO_CHANNELS     SPERR_CANNOT_ALLOCATE_CHANNELS
  33. #define SPERR_NO_HANDLE       SPERR_INVALID_HANDLE
  34.  
  35.  
  36. #endif /* SUPERPLAY_SPOBSOLETE_H */
  37.